home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Critical Thinking Skills / Workplace Effectiveness: Critical Thinking Skills.iso / pc / Files / Define.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-09-15  |  694 b   |  49 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   case gSection of
  5.     #intro:
  6.       go("dragging")
  7.     #dragSection:
  8.       goHowMany()
  9.     #howMany:
  10.       goButtons1()
  11.     #Buttons1:
  12.       goButtons2()
  13.     #buttons2:
  14.       leaveThisMovie()
  15.   end case
  16. end
  17.  
  18. on goBack
  19.   case gSection of
  20.     #dragSection:
  21.       goIntro()
  22.     #howMany:
  23.       go("dragging")
  24.     #Buttons1:
  25.       goHowMany()
  26.     #buttons2:
  27.       goButtons1()
  28.   end case
  29. end
  30.  
  31. on leaveThisMovie
  32.   if iAmActivated(gMasterData) then
  33.     getPrintData()
  34.   end if
  35.   clearSoundUsage(gMasterData, ["04", "05"])
  36.   stopSound2()
  37.   cursor(4)
  38.   go(1, "Main")
  39. end
  40.  
  41. on notePadButton
  42.   DoNotepad()
  43. end
  44.  
  45. on continueNext
  46.   stopSound2()
  47.   go(the frame + 1)
  48. end
  49.